home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 117 / MacAddict 117.dmg / Software / Utilities / USB Overdrive 10.4.5 (shareware).dmg / USB Overdrive.pkg / Contents / Resources / VolumeCheck < prev   
Encoding:
Text File  |  2006-02-15  |  257 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. # delete existing package to avoid "Update" button
  4. if [ -e "$1Library/Receipts/USB Overdrive.pkg" ] ; then
  5.     rm -rf "$1Library/Receipts/USB Overdrive.pkg" 2> /dev/null
  6. fi
  7.  
  8. # boot drive only
  9. if ([ "$1" = "/" ]) then
  10.     exit 0
  11. fi
  12.  
  13. # skip disk
  14. exit 48
  15.